home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_300
/
317_01
/
g4tdecod.c
< prev
next >
Wrap
C/C++ Source or Header
|
1990-06-16
|
23KB
|
649 lines
/* $Id: g4tdecod.c 1.2 90/06/09 18:24:25 marking Exp $
*
NAME
* g4tdecod.c -- decode group 4 data using tables
*
TYPE
* C procedures
*
SYNOPSIS
* char g4i_initialize (short image_width, short image_length);
* char g4i_decode (void);
*
DESCRIPTION
* In order to acquire data from the image and to return run lengths and
* new line information, these routines invoke procedures provided by the
* caller. These caller-provided procedures are invoked throught pointers
* which have been stuffed by the caller with the procedure addresses.
* To acquire a new data byte, g4i_decode () calls (*p_g41_next_byte) ().
* To report the decoding of a black or white run, the routines
* (*p_decode_black) () or (*p_decode_white) () are called.
*
RETURNS
* Initialization always returns zero.
*
* For decoding,
* 0 end of image reached
* -1 on error (bad data)
* The decode loop will be prematurely terminated if decode_return is
* set to not zero, and the value of decode_return will be returned.
* No code here does this, but it might be useful under certain
* circumstances.
*
LEGAL
* Copyright 1989, 1990 Michael P. Marking, Post Office Box 8039,
* Scottsdale, Arizona 85252-8039. All rights reserved.
*
* License is granted by the copyright holder to distribute and use this
* code without payment of royalties or the necessity of notification as
* long as this notice (all the text under "LEGAL") is included.
*
* Reference: $Id: g4tdecod.c 1.2 90/06/09 18:24:25 marking Exp $
*
* This program is offered without any warranty of any kind. It includes
* no warranty of merchantability or fitness for any purpose. Testing and
* suitability for any use are the sole responsibility of the user.
*
HISTORY
* $Log: g4tdecod.c $
* Revision 1.2 90/06/09 18:24:25 marking
* clean up comments for release
*
* Revision 1.1 89/06/30 17:00:00 marking
* Initial revision
*
*
NOTES
*
PORTABILITY
* Tested using Microsoft C 5.1. Some memory models may not work due to
* the large decoding arrays.
*
* There is a non-portable use of "global" variables in the file g3g4.h,
* about which a minority of compilers will justifiably complain. Certain
* variables are declared in g3g4.h without extern keywords. Strictly
* speaking, they should be declared extern in all but one module, but
* that would require complication of g3g4.h. If it gets past your
* compiler and linker, you can probably ignore it.
*
SEE ALSO
* g3tdecod.c -- decode group 3 image using tables
* builddec.c -- build image decoding tables
*
INFORMATION
* Although there is no support offered with this program, the author will
* endeavor to correct errors. Updates will also be made available from
* time to time.
*
* Contact: Michael P. Marking, Post Office Box 8039, Scottsdale, Arizona
* 85252-8039 USA. Replies are not guaranteed to be swift. Beginning
* July 1990, e-mail may be sent to uunet!ipel!marking.
*
* Also beginning in July 1990, this code will be archived at the
* ipel!phoenix BBS in file g3g4.zoo. The 24-hour telephone number
* for 300/1200/2400 is (602)274-0462. When logging in, specify user
* "public", system "bbs", and password "public".
*
* This code is also available from the C Users Group in volume 317.
*/
#include "g3g4.h"
/* #define TRACE 1 */
#define TRACE_BEGIN 0
#define TRACE_END 30000
/* implementation limits: Due to the sizes of arrays and variables, and not
due to any restrictions in the algorithm, the following limits exist:
maximum number of pixels per row: 65533
maximum number of rows per image: none
maximum or minimum k-factor: none
maximum number of runs per row: 16382 white, 16382 black
To increase (or decrease) these limits, it will be necessary to play with
array and variable sizes. On segmented machines (such as the 8086), a
different memory model may be necessary. The algorithm itself has no
limits on image size or complexity, and the stack requirements are in-
sensitive to changes in these limits or to image complexity. */
#define EVEN 0
#define ODD 1
static short a0, a1, a2, b0, b1, b2, bit_number, code_byte;
static unsigned char color, current_row, mode, next_state;
static unsigned short even_runs [32768], odd_runs [32768];
static unsigned short even_index, odd_index;
static short column_limit;
static short row_number = 0;
/* Depending as current_row == EVEN or current_row == ODD, the runs of the
current row are represented in even_runs [] or odd_runs []. The white
runs have even subscripts and the black runs have odd subscripts. The
values of the array elements are the offsets of the beginnings of the
corresponding runs from the beginning of the row. As defined by the
specification,
a0 is the reference or starting changing element on the coding line.
It may be considered the "current position".
a1 is the next changing element to the right of a0 on the coding line.
a2 is the next changing element to the right of a1 on the coding line.
b1 is the first changing element on the reference line to the right of
a0 and of opposite color to a0.
b2 is the next changing element to the right of b1 on the reference
line.
Furthermore,
b0 is the "previous" value of b1.
Depending as current_row == EVEN or == ODD, even_index or odd_index is
the subscript of the entry in even_runs [] or odd_runs [] corresponding
to the run containing the current value of a0, and its counterpart cor-
responds to the run containing b1. */
extern unsigned char huge null_mode [] [256];
/* One of the entries PASS_MODE, HORIZONTAL_MODE, etc, or zero. If the entry
is zero, then the bit string is indigestible and null_mode_next_state [][]
is consulted to decode the subsequent byte. The row number (first sub-
script) corresponds to the assumption about the state of the machine after
decoding the previous codeword. If < 8, then it refers to the starting
bit number for this codeword. If > 7, it implies a bit string to be pre-
fixed to the first bit of the current byte. The column number (second
subscript) refers to the value of the current byte. */
extern unsigned char huge null_mode_next_state [] [256];
extern unsigned char huge horiz_mode [] [256];
extern unsigned char huge horiz_mode_next_state [] [256];
static void new_row (void);
static short decode_white_run (void);
static short decode_black_run (void);
static char decode_return;
/* g4i_decode () successively invokes (*p_decode_next_byte) () for each byte of the
encoded image, and calls (*p_decode_white) () or (*p_decode_black) () as
required to return the image contents on a run-by-run basis. */
char g4i_decode ()
{
/* At the beginning of this routine, we are in the NULL mode, which is to
to say that no codewords are currently understood or digested. The
variable bit_number has been initialized to zero, to indicate that the
next (first) codeword is to begin with bit zero of the next code byte.
This betrays an assumption that all images begin on byte boundaries, a
condition that can be changed by arranging for bit_number to be set
otherwise by g4i_initialize () or elsewhere. */
while (!decode_return)
{
/* No codewords have been digested, so no mode is currently understood.
It is possible, however, that bits have been left over from the last
code byte, and that these must be conceptually prefixed to the next
bits at the beginning of the next code byte to establish which code
word is next. The decision is made based on bit_number, which is
zero if the codeword begins on a byte boundary; 1, 2, ... 7 if the
codeword begins with bit 1, 2, ... 7; or > 7 if the codeword begins
with bit zero but is assumed to have a non-null bits string prefix.
In any case, the bit_number corresponds to a row in the decoding
tables. */
if (bit_number == 0 || bit_number > 7) /* the